Merge pull request #7655 from kmitchel/dyn_notch_binoffset
[betaflight.git] / docs / Inflight Adjustments.md
blob3149616cf44496a19f13e647c57fa1c7c2d20288
1 # In-flight Adjustments
3 With Cleanflight it's possible to make adjustments to various settings by using AUX channels from your transmitter while the aircraft is flying.
5 ## Warning
7 Changing settings during flight can make your aircraft unstable and crash if you are not careful.
9 ## Recommendations
11 * Always make adjustments while flying in a large open area.
12 * Make small adjustments and fly carefully to test your adjustment.
13 * Give yourself enough flying space and time to adjust to how your changes affect the behaviour of the aircraft.
14 * Remember to set adjustment channel switches/pots to the center position before powering on your TX and your aircraft.
15 * If possible configure switch warnings on your transitter for dedicated adjustment switches. 
16 * A momentary 3 position switch is the best choice of switch for this - i.e. one that re-centers itself when you let go of it.
18 ## Overview
20 There are two modes of operation. The first supports adjusting settings by incrementing/decrementing them through use of an aux channel, typically a three position switch, where the middle position makes no change, and the other positions either increment or decrement the selected setting.
22 The other mode is Absolute mode where a pot (knob/slider) may be directly mapped and changes the selected setting to a value based on a center value, coresponding to mid-postion on the pot and a range of ± adjustment at the min/max positions of the pot.
24 Both modes utilise two channels to make an adjustment.
26 | Channel | Use |
27 | ------- | --- |
28 | Range | This channel is used to enable an adjustment. When the channel is set to fall withing the specified range, then the corresponding adjustment is enabled. This is similar to mode setting where a given mode is enabled when a channel is within a lower and upper range. |
29 | Adjustment | This channel is used to control the change to the specified setting|
31 Settings are not saved automatically, connect a GUI, refresh and save or save using stick position when disarmed.
32 Powering off without saving will discard the adjustments.
34 Settings can be saved when disarmed using stick positions: Throttle Low, Yaw Left, Pitch Low, Roll Right.
36 ### Increment/Decrement mode
38 Up to 4 RX channels can be used to make different adjustments at the same time.
40 The adjustment the Adjustment Channel makes is controlled by the Range Channel.
42 The following adjustments can be made, in flight, as well as on the ground.
44 * RC Rate
45 * RC Expo
46 * Throttle Expo
47 * Roll & Pitch Rate
48 * Yaw Rate
49 * Pitch+Roll P I and D
50 * Yaw P I and D
52 Example scenarios:
53 Up to 4 3-position switches or pots can be used to adjust 4 different settings at the same time.
54 A single 2/3/4/5/6/x position switch can be used to make one 3 position switch adjust one setting at a time.
56 Any combination of switches and pots can be used. So you could have 6 POS switch.
58 #### Adjustment switches
60 The Adjustment switch is associated with the Adjustment Channel. The switch can be a ON-OFF-ON, POT or momentary ON-OFF-ON switch.  The latter is recommended.
62 When the switch is returned to the center position the value will not be increased/decreased.
64 Each time you can press the switch high/low and then return it to the middle the value will change at least once, you do not have to wait before pressing the switch again if you want to increase/decrease at a faster rate.  While the adjustment switch held is high/low, the adjustment function applies and increases/decreases the value being adjusted twice a second and the flight controller will beep shorter/longer, respectively. The system works similar to how a keyboard repeat delay works.
66 Hint: With OpenTX transmitters you can combine two momentary OFF-ON switches to control a single channel.  You could make it so that a momentary switch on the left of your transmitter decreases the value and a momentary switch on the right increases the value.  Experiment with your mixer!
68 ### Absolute mode
70 The adjustment is made where the Adjustment Channel is an Aux channel connected to a pot (knob/slider). This provides an easier approach than using the Increment/Decrement mode as it is easier to keep track of the setting.
72 Note that if the same pot is used as the Adjustment Channel to make multiple adjustments, there is a risk of a jump in values of the second setting when switching from the first if the pot is not centered. To avoid this it is recommended that if adjusting two different settings using the same pot, a three position switch be used for the Range Channel, with neither setting associated with the middle position.
74 ## Configuration
76 The CLI command `adjrange` is used to configure adjustment ranges.
78 12 adjustment ranges can be defined.
79 4 adjustments can be made at the same time, each simultaneous adjustment requires an adjustment slot.
81 Show the current ranges using:
83 `adjrange` 
85 Configure a range using:
87 `adjrange <index> <slot> <range channel> <range start> <range end> <adjustment function> <adjustment channel>`
91 | Argument | Value | Meaning |
92 | -------- | ----- |-------- |
93 | Index | 0 - 11 | Select the adjustment range to configure |
94 | Slot | 0 - 3 | Select the adjustment slot to use |
95 | Range Channel | 0 based index, AUX1 = 0, AUX2 = 1 | The AUX channel to use to select an adjustment for a switch/pot | 
96 | Range Start | 900 - 2100. Steps of 25, e.g. 900, 925, 950... | Start of range | 
97 | Range End | 900 - 2100 | End of range |
98 | Adjustment function | 0 - 11 | See Adjustment function table |
99 | Adjustment channel | 0 based index, AUX1 = 0, AUX2 = 1 | The channel that is controlled by a 3 Position switch/Pot |
100 | Center Value | If this is non-zero then Absolute Mode is used for this range otherwise Increment/Decrement Mode is used. In Absolute Mode this value is the value which will be assigned to the setting when the Adjustment Channel is set to mid-position. |
101 | Scale Value | This specifies the amount that will be subtracted/added to the center value when the Adjustment Channel is at min/max respectively. |
103 Range Start/End values should match the values sent by your receiver.
105 Normally Range Channel and Slot values are grouped together over multiple adjustment ranges.
107 The Range Channel and the Adjustment Channel can be the same channel.  This is useful when you want a single 3 Position switch to be dedicated
108 to a single adjustment function regardless of other switch positions.
110 The adjustment function is applied to the adjustment channel when range channel is between the range values.
111 The adjustment is made when the adjustment channel is in the high or low position.  high = mid_rc + 200, low = mid_rc - 200.  by default this is 1700 and 1300 respectively.
113 When the Range Channel does not fall into Start/End range the assigned slot will retain it's state and will continue to apply the adjustment. For
114 this reason ensure that you define enough ranges to cover the range channel's usable range.
116 ### Adjustment function
118 | Value | Adjustment | Notes |
119 | ----- | ---------- |------ |
120 | 0     | None |
121 | 1     | RC RATE |
122 | 2     | RC_EXPO |
123 | 3     | THROTTLE_EXPO |
124 | 4     | PITCH_ROLL_RATE |
125 | 5     | YAW_RATE |
126 | 6     | PITCH_ROLL_P |
127 | 7     | PITCH_ROLL_I |
128 | 8     | PITCH_ROLL_D |
129 | 9     | YAW_P |
130 | 10    | YAW_I |
131 | 11    | YAW_D |
132 | 12    | RATE_PROFILE | Switch between 3 rate profiles using a 3 position switch. |
133 | 13    | PITCH_RATE |
134 | 14    | ROLL_RATE |
135 | 15    | PITCH_P |
136 | 16    | PITCH_I |
137 | 17    | PITCH_D |
138 | 18    | ROLL_P |
139 | 19    | ROLL_I |
140 | 20    | ROLL_D |
142 ## Examples
144 ### Example 1 - 3 Position switch used to adjust pitch/roll rate
147 adjrange 0 0 3 900 2100 4 3 0 0
150 explained:
152 * configure adjrange 0 to use adjustment slot 1 (0) so that when aux4
153 (3) in the range 900-2100 then use adjustment 4 (pitch/roll rate) when aux 4 (3)
154 is in the appropriate position. 
155 * note that Center/Scale values are both zero, so this range will use increment/decrement mode.
158 ### Example 2 - 2 Position switch used to enable adjustment of RC rate via a 3 position switch
161 adjrange 1 1 0 900 1700 0 2 0 0
162 adjrange 2 1 0 1700 2100 1 2 0 0
164 explained:
166 * configure adjrange 1 to use adjustment slot 2 (1) so that when aux1
167 (0) in the range 900-1700 then do nothing (0) when aux 3 (2) is in any
168 position.
169 * configure adjrange 2 to use adjustment slot 2 (1) so that when aux1
170 (0) in the range 1700-2100 then use adjustment rc rate (1) when aux 3
171 (2) is in the appropriate position.
172 * note that Center/Scale values are both zero, so this range will use increment/decrement mode.
174 Without the entire range of aux1 being defined there is nothing that
175 would stop aux 3 adjusting the pitch/roll rate once aux 1 wasn't in the higher
176 range.
178 ### Example 3 - 6 Position switch used to select PID tuning adjustments via a 3 position switch
181 adjrange 3 2 1 900 1150 6 3 0 0
182 adjrange 4 2 1 1150 1300 7 3 0 0
183 adjrange 5 2 1 1300 1500 8 3 0 0
184 adjrange 6 2 1 1500 1700 9 3 0 0
185 adjrange 7 2 1 1700 1850 10 3 0 0
186 adjrange 8 2 1 1850 2100 11 3 0 0
189 explained:
191 * configure adjrange 3 to use adjustment slot 3 (2) so that when aux2
192 (1) in the range 900-1150 then use adjustment Pitch/Roll P (6) when aux 4
193 (3) is in the appropriate position.
194 * configure adjrange 4 to use adjustment slot 3 (2) so that when aux2
195 (1) in the range 1150-1300 then use adjustment Pitch/Roll I (7) when aux 4
196 (3) is in the appropriate position.
197 * configure adjrange 5 to use adjustment slot 3 (2) so that when aux2
198 (1) in the range 1300-1500 then use adjustment Pitch/Roll D (8) when aux 4
199 (3) is in the appropriate position.
200 * configure adjrange 6 to use adjustment slot 3 (2) so that when aux2
201 (1) in the range 1500-1700 then use adjustment Yaw P (9) when aux 4
202 (3) is in the appropriate position.
203 * configure adjrange 7 to use adjustment slot 3 (2) so that when aux2
204 (1) in the range 1700-1850 then use adjustment Yaw I (10) when aux 4
205 (3) is in the appropriate position.
206 * configure adjrange 8 to use adjustment slot 3 (2) so that when aux2
207 (1) in the range 1850-2100 then use adjustment Yaw D (11) when aux 4
208 (3) is in the appropriate position.
209 * note that Center/Scale values are both zero, so this range will use increment/decrement mode.
211 ### Example 4 - Use a single 3 position switch to change between 3 different rate profiles
214 adjrange 11 3 3 900 2100 12 3 0 0
217 explained:
219 * configure adjrange 11 to use adjustment slot 4 (3) so that when aux4
220 (3) in the range 900-2100 then use adjustment Rate Profile (12) when aux 4
221 (3) is in the appropriate position.
222 * note that Center/Scale values are both zero, so this range will use increment/decrement mode.
224 When the switch is low, rate profile 0 is selcted.
225 When the switch is medium, rate profile 1 is selcted.
226 When the switch is high, rate profile 2 is selcted.
228 ### Example 5 - Use a single switch to enable absolute setting of Roll/Pitch P terms from two pots
231 adjrange 0 0 4 1450 1550 18 0 40 10
232 adjrange 1 0 4 1450 1550 15 1 58 20
235 explained:
237 * note that Center value is non-zero, so this range will use absolute mode.
238 * configure adjrange 0 so that when aux5 (3) in the range 1450-1550 then use aux 1 (0) to adjust Roll P Adjustment (18) such that the value will be 40 with the pot centered and 30/50 at min/max.
239 * configure adjrange 1 so that when aux5 (3) in the range 1450-1550 then use aux 2 (0) to adjust Pitch P Adjustment (15) such that the value will be 58 with the pot centered and 38/78 at min/max.
241 ### Example 6 - Use a single switch to enable absolute setting of Roll/Pitch P/I/D terms from three pots, selected using a single switch
244 adjrange 0 0 4 950 1050 18 0 40 20
245 adjrange 1 0 4 950 1050 19 1 107 53
246 adjrange 2 0 4 950 1050 20 2 76 38
247 adjrange 3 0 4 1950 2050 15 0 63 16
248 adjrange 4 0 4 1950 2050 16 1 138 69
249 adjrange 5 0 4 1950 2050 17 2 66 33
251 explained:
253 * note that Center value is non-zero, so this range will use absolute mode.
255 This assigns pots aux 1, aux 2, and aux 3 respectively to control P, I and D settings with the pots at mid-position giving the default P/I/D values and providing a range of adjustment of +/- 50%. When the aux 5 switch is in one end position then roll P/I/D will be adjusted and when the aux 5 switch is in the other end position, pitch P/I/D will be adjusted. In the aux 5 switch middle position nether will be adjusted. Thus one could center the pots, select roll on aux 5 and then adjust the P/I/D values in flight. Then land, move the aux 5 switch to center, center the pots, select pitch on the switch and then again adjust P/I/D in flight. 
257 ### Configurator examples
259 Note that the configurator does not currently support the Center/Scale values, however it may still be used to setup the ranges and then the CLI may be used to set the Center/Scale values.
261 The following 5 images show valid configurations.  In all cales the enture usable range for the Range Channel is used.
263 ![Configurator example 1](Screenshots/adjustments-rate-profile-selection-via-3pos.png)
267 ![Configurator example 2](Screenshots/adjustments-pitch-and-roll-rate-adjustment-via-3pos.png)
271 ![Configurator example 3](Screenshots/adjustments-pid-via-two-3pos.png)
275 ![Configurator example 4](Screenshots/adjustments-pid-via-6pos-and-3pos.png)
279 ![Configurator example 5](Screenshots/adjustments-rates-via-a-2pos-and-3pos.png)
281 The following examples shows __incorrect__ configurations - the entire usable range for the Range Channel is not used in both cases.
283 ![Configurator example 6](Screenshots/adjustments-incorrect-config-1.png)
284 ![Configurator example 7](Screenshots/adjustments-incorrect-config-2.png)
286 In the following example, the incorrect configuraton (above) has been corrected by adding a range that makes 'No changes'.
288 ![Configurator example 7](Screenshots/adjustments-incorrect-config-2-corrected.png)